From 21260e8ed40c8e013194a7c258d89391f7662ff0 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 29 Apr 2023 07:58:42 -0400 Subject: [PATCH] theme: Reinstate switch labels in hc Since we show them in GNOME shell, show them here too. The comment that says "only show these in the a11y theme" was still there, but we were always hiding them. --- gtk/theme/Default/_common.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gtk/theme/Default/_common.scss b/gtk/theme/Default/_common.scss index 26ff434aac..33b7172914 100644 --- a/gtk/theme/Default/_common.scss +++ b/gtk/theme/Default/_common.scss @@ -2482,7 +2482,9 @@ switch { transition: $button_transition; } - > image { color: transparent; } /* only show i / o for the accessible theme */ + @if $contrast != 'high' { + > image { color: transparent; } /* only show i / o for the accessible theme */ + } &:hover > slider { @include button(hover); -- 2.30.2